home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctb100t / bdrdef.h next >
Text File  |  1987-08-28  |  1KB  |  32 lines

  1. /****************************************************************************
  2.  *                                bdrdef.h                                  *
  3.  *                                                                          *
  4.  *   Basic bordef defintion header for the C Tool Box.  This header         *
  5.  *   contains definitions of several basic border types.  In no border      *
  6.  *   type is specified the library will default to a double line border.    *
  7.  *                                                                          *
  8.  *                                                                          *
  9.  *                           Copyright (c) 1987                             *
  10.  *                            David A.  Miller                              *
  11.  *                            Unicorn Software                              *
  12.  *                                                                          *
  13.  ****************************************************************************/
  14.  
  15.  
  16.  
  17. BORDER bdr1   = { '─', '│', '┌', '┐', '└', '┘' };
  18.  
  19. BORDER bdr12  = { '─', '║', '╓', '╖', '╙', '╜'  };
  20.  
  21. BORDER bdr21  = { '═', '│', '╒', '╕', '╘', '╛'  };
  22.  
  23. BORDER star   = { '*',   '*',   '*',   '*',   '*',   '*'   };
  24.  
  25. BORDER dot    = { '·',   '·',   '·',   '·',   '·',   '·'   };
  26.  
  27. BORDER solid  = { '█', '█','█','█','█','█' };
  28.  
  29. BORDER heart  = { '\003','\003', '\003', '\003', '\003', '\003' };
  30.  
  31. BORDER space  = { ' ', ' ',' ',' ',' ',' ' };
  32.